home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19941031-19941221 / 000317_news@columbia.edu_Thu Dec 1 14:22:42 1994.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA23698
  2.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 1 Dec 1994 09:22:54 -0500
  3. Received: by apakabar.cc.columbia.edu id AA07473
  4.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 1 Dec 1994 09:22:51 -0500
  5. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  6. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  7. Newsgroups: comp.protocols.kermit.misc
  8. Subject: Re: Autodialing Script?
  9. Date: 1 Dec 1994 14:22:42 GMT
  10. Organization: Columbia University
  11. Lines: 23
  12. Message-Id: <3bkm7i$798@apakabar.cc.columbia.edu>
  13. References: <3bgknu$1n3l@bigblue.oit.unc.edu>
  14. Nntp-Posting-Host: watsun.cc.columbia.edu
  15. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  16.  
  17. In article <3bgknu$1n3l@bigblue.oit.unc.edu>,
  18. Lance Arnder <lla@med.unc.edu> wrote:
  19. >Does anyone know where I might find a simple autodialing script for 
  20. >C-Kermit?  I've written one myself that works using MS-DOS Kermit
  21. >but doesn't work using C-Kermit on an RS6000.  The input command
  22. >intercepts messages from the computer I'm dialing to but it 
  23. >doesn't seem to intercept messages from the modem (like "call
  24. >failed 'line BUSY'")
  25. >
  26. Here is a very simple one:
  27.  
  28.   define keep_on_dialing dial \%1, while fail { sleep 30, redial }
  29.  
  30. You should also be able to adapt MS-DOS Kermit dialing scripts very
  31. easily.  If the INPUT command is not reading messages from the modem,
  32. then maybe the modem is not issuing the messages.  For example, it
  33. might be in "silent mode" or numeric-response mode.  Or maybe you
  34. need to add the following command to your script program before
  35. attempting to do i/o with the modem's command processor:
  36.  
  37.   SET CARRIER OFF
  38.  
  39. - Frank